Skip to content

OCPBUGS-88531: Propagate restart-date annotation to CNO operand pod templates#3030

Open
bryan-cox wants to merge 1 commit into
openshift:masterfrom
bryan-cox:OCPBUGS-88531
Open

OCPBUGS-88531: Propagate restart-date annotation to CNO operand pod templates#3030
bryan-cox wants to merge 1 commit into
openshift:masterfrom
bryan-cox:OCPBUGS-88531

Conversation

@bryan-cox

@bryan-cox bryan-cox commented Jun 15, 2026

Copy link
Copy Markdown
Member

Summary

When the hypershift.openshift.io/restart-date annotation is set on a HostedControlPlane CR, CNO-managed operands like cloud-network-config-controller were not being restarted. CNO never propagated this annotation to its operand pod templates, so there was nothing to trigger a rollout.

Previously, the CPO (control-plane-operator) handled restart-date propagation by directly patching individual deployments (multus-admission-controller, network-node-identity, ovnkube-control-plane), but this approach missed cloud-network-config-controller entirely — which is the bug reported in OCPBUGS-88531.

This PR fixes the issue by having CNO propagate the annotation itself:

  • Reading the hypershift.openshift.io/restart-date annotation from the HostedControlPlane CR in ParseHostedControlPlane()
  • Adding a SetRestartDateAnnotation() helper that injects the restart-date into pod template annotations of rendered Deployments, DaemonSets, and StatefulSets within the HCP namespace only (guest-cluster workloads are not affected)
  • Calling this helper in the reconciler after Render() returns, gated on HyperShift mode and a non-empty restart-date value

The companion HyperShift PR (#8751) removes the redundant CPO-side restart logic, since CNO now handles it directly.

Annotation removal behavior

If the restart-date annotation is removed from the HostedControlPlane, CNO will render manifests without the annotation on pod templates. This changes the pod template spec, triggering another rollout that restores the pods to a clean state (no restart-date annotation). This is expected behavior — removing the annotation is an explicit operator action.

Test plan

  • Unit tests for ParseHostedControlPlane with restart-date annotation
  • Unit tests for SetRestartDateAnnotation covering Deployments, DaemonSets, StatefulSets, non-apps objects, namespace filtering, annotation preservation, and multi-object handling
  • go build ./... passes
  • go test ./pkg/... ./cmd/... passes
  • go vet passes
  • Manual e2e: Set hypershift.openshift.io/restart-date annotation on a HostedCluster and verified all 4 CNO operands restart (cloud-network-config-controller, multus-admission-controller, network-node-identity, ovnkube-control-plane). Full test verification report.

Fixes: https://issues.redhat.com/browse/OCPBUGS-88531

@openshift-ci-robot openshift-ci-robot added jira/severity-moderate Referenced Jira bug's severity is moderate for the branch this PR is targeting. jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. jira/invalid-bug Indicates that a referenced Jira bug is invalid for the branch this PR is targeting. labels Jun 15, 2026
@openshift-ci-robot

Copy link
Copy Markdown
Contributor

@bryan-cox: This pull request references Jira Issue OCPBUGS-88531, which is invalid:

  • expected the bug to target the "5.0.0" version, but no target version was set

Comment /jira refresh to re-evaluate validity if changes to the Jira bug are made, or edit the title of this pull request to link to a different bug.

The bug has been updated to refer to the pull request using the external bug tracker.

Details

In response to this:

Summary

When the hypershift.openshift.io/restart-date annotation is set on a HostedControlPlane CR, CNO-managed operands like cloud-network-config-controller were not being restarted. This happened because CNO uses server-side apply with deterministic manifests — applying the same manifest twice is a no-op, so operands don't roll out unless something in the pod template changes.

This PR fixes the issue by:

  • Reading the hypershift.openshift.io/restart-date annotation from the HostedControlPlane CR in ParseHostedControlPlane()
  • Adding a SetRestartDateAnnotation() helper that injects the restart-date into pod template annotations of all rendered Deployments, DaemonSets, and StatefulSets
  • Calling this helper in the reconciler after Render() returns, gated on HyperShift mode and a non-empty restart-date value

This follows the existing patterns in CNO:

  • Reading HCP annotations in ParseHostedControlPlane (like control-plane-priority-class)
  • Modifying rendered objects post-Render (like setOVNObjectAnnotation)

This is the architecturally correct location for this logic since CNO owns these operands and should be responsible for their lifecycle.

Test plan

  • Unit tests for ParseHostedControlPlane with restart-date annotation
  • Unit tests for SetRestartDateAnnotation covering Deployments, DaemonSets, StatefulSets, non-apps objects, annotation preservation, and multi-object handling
  • go build ./... passes
  • go test ./pkg/... ./cmd/... passes
  • go vet passes
  • Manual e2e: Set hypershift.openshift.io/restart-date annotation on an HCP and verify cloud-network-config-controller pods restart

Fixes: https://issues.redhat.com/browse/OCPBUGS-88531

🤖 Generated with Claude Code via /jira:solve OCPBUGS-88531

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@coderabbitai

coderabbitai Bot commented Jun 15, 2026

Copy link
Copy Markdown

Walkthrough

Adds a RestartDateAnnotation constant and RestartDate field to HostedControlPlane, extends ParseHostedControlPlane to read the annotation, and introduces SetRestartDateAnnotation to stamp the value onto apps/v1 workload pod-template annotations. The reconciler calls this helper after rendering when RestartDate is non-empty, aborting on error.

Changes

HyperShift restart-date annotation propagation

Layer / File(s) Summary
Data model and parsing
pkg/hypershift/hypershift.go, pkg/hypershift/hypershift_test.go
Adds RestartDateAnnotation constant, Namespace string and RestartDate string fields to HostedControlPlane, extends ParseHostedControlPlane to read restartDate from metadata.annotations and populate both new fields, and validates with TestParseHostedControlPlaneRestartDate.
Annotation setter implementation
pkg/hypershift/hypershift.go, pkg/hypershift/hypershift_test.go
Implements SetRestartDateAnnotation that filters objects by namespace and apps/v1 Deployment/DaemonSet/StatefulSet kinds, then writes the restart-date annotation into spec.template.metadata.annotations. Tests cover annotation setting, namespace and kind filtering, preservation of existing annotations, and mixed-object lists via TestSetRestartDateAnnotation.
Reconciler integration
pkg/controller/operconfig/operconfig_controller.go
After rendering, conditionally calls SetRestartDateAnnotation when HostedControlPlane.RestartDate is non-empty; on failure logs the error, records RenderError degraded condition, and returns early.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~12 minutes

🚥 Pre-merge checks | ✅ 14 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 50.00% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (14 passed)
Check name Status Explanation
Title check ✅ Passed The title accurately captures the main change: propagating the restart-date annotation to CNO operand pod templates, which is the core fix for the OCPBUGS-88531 issue.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Stable And Deterministic Test Names ✅ Passed All test names added in the PR are stable and deterministic. Test functions (TestParseHostedControlPlaneRestartDate, TestSetRestartDateAnnotation) and all 7 subtests use static, descriptive strings...
Test Structure And Quality ✅ Passed This check is not applicable: it specifically targets Ginkgo test code (Describe/It blocks, BeforeEach/AfterEach, Eventually/Consistently), but the PR adds standard Go unit tests, and the codebase...
Microshift Test Compatibility ✅ Passed No Ginkgo e2e tests were added in this PR. Only standard Go unit tests were added to pkg/hypershift/hypershift_test.go, which are outside the scope of this check.
Single Node Openshift (Sno) Test Compatibility ✅ Passed No Ginkgo e2e tests were added in this PR. The tests in hypershift_test.go are standard Go unit tests using testing.T and gomega assertions, not Ginkgo e2e tests.
Topology-Aware Scheduling Compatibility ✅ Passed This PR only adds annotation handling to pod templates (setting restart-date metadata). It introduces no affinity rules, topology constraints, scheduling constraints, nodeSelectors, tolerations, re...
Ote Binary Stdout Contract ✅ Passed PR introduces no OTE stdout contract violations: log.Printf calls use stderr (standard Go log), no fmt.Print*/klog in process-level code, no init()/main()/TestMain() functions.
Ipv6 And Disconnected Network Test Compatibility ✅ Passed No Ginkgo e2e tests are added in this PR. Tests added are standard Go unit tests in hypershift_test.go using testing.T framework, which are not subject to the IPv6/disconnected network check.
No-Weak-Crypto ✅ Passed No weak cryptography found. PR adds restart-date annotation handling with standard Kubernetes APIs; no MD5/SHA1/DES/RC4/3DES/Blowfish/ECB usage, custom crypto implementations, or unsafe secret comp...
Container-Privileges ✅ Passed PR only adds annotation-based pod template modifications and doesn't introduce privileged: true, hostPID/Network/IPC, SYS_ADMIN capability, or allowPrivilegeEscalation flags.
No-Sensitive-Data-In-Logs ✅ Passed The new logging statement logs only Kubernetes object kind/name and standard API errors; the restart-date value itself is never logged. No passwords, tokens, API keys, PII, or sensitive data are ex...
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Comment @coderabbitai help to get the list of available commands and usage tips.

@openshift-ci openshift-ci Bot added the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Jun 15, 2026
@openshift-ci

openshift-ci Bot commented Jun 15, 2026

Copy link
Copy Markdown
Contributor

Skipping CI for Draft Pull Request.
If you want CI signal for your change, please convert it to an actual PR.
You can still manually trigger a test run with /test all

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@pkg/hypershift/hypershift_test.go`:
- Around line 154-155: The test code is discarding error returns by using blank
identifiers (_) instead of capturing them, which can mask test failures and
produce misleading passes. Identify all instances in the test file where
function calls return errors that are being ignored (such as calls to
unstructured.NestedStringMap and similar utility functions), capture the
returned error values instead of discarding them with _, and add appropriate
assertions or error handling using the test assertion framework (e.g.,
g.Expect(err).NotTo(HaveOccurred())) to verify these operations succeed as
expected during test setup and assertions.

In `@pkg/hypershift/hypershift.go`:
- Line 291: The call to unstructured.NestedStringMap is discarding the error
return value (the third return value) by using a blank identifier, which means
any errors from malformed annotations are silently ignored. Instead of ignoring
the error, capture it as a named variable in the assignment to
unstructured.NestedStringMap, check if the error is non-nil, and handle it
appropriately before proceeding to mutate the pod-template annotations. This
ensures that rendering defects in the annotations are surfaced rather than
silently hidden.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Repository: openshift/coderabbit/.coderabbit.yaml

Review profile: CHILL

Plan: Enterprise

Run ID: 37272bb8-3d49-4c7b-9530-3c9966bb18b4

📥 Commits

Reviewing files that changed from the base of the PR and between 6dc1804 and d807287.

📒 Files selected for processing (3)
  • pkg/controller/operconfig/operconfig_controller.go
  • pkg/hypershift/hypershift.go
  • pkg/hypershift/hypershift_test.go

Comment thread pkg/hypershift/hypershift_test.go Outdated
Comment thread pkg/hypershift/hypershift.go Outdated
@bryan-cox bryan-cox marked this pull request as ready for review June 15, 2026 16:42
@bryan-cox

Copy link
Copy Markdown
Member Author

/jira refresh

@openshift-ci openshift-ci Bot removed the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Jun 15, 2026
@openshift-ci-robot openshift-ci-robot added jira/valid-bug Indicates that a referenced Jira bug is valid for the branch this PR is targeting. and removed jira/invalid-bug Indicates that a referenced Jira bug is invalid for the branch this PR is targeting. labels Jun 15, 2026
@openshift-ci-robot

Copy link
Copy Markdown
Contributor

@bryan-cox: This pull request references Jira Issue OCPBUGS-88531, which is valid. The bug has been moved to the POST state.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state ASSIGNED, which is one of the valid states (NEW, ASSIGNED, POST)
Details

In response to this:

/jira refresh

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@openshift-ci-robot

Copy link
Copy Markdown
Contributor

@bryan-cox: This pull request references Jira Issue OCPBUGS-88531, which is valid.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state POST, which is one of the valid states (NEW, ASSIGNED, POST)
Details

In response to this:

Summary

When the hypershift.openshift.io/restart-date annotation is set on a HostedControlPlane CR, CNO-managed operands like cloud-network-config-controller were not being restarted. This happened because CNO uses server-side apply with deterministic manifests — applying the same manifest twice is a no-op, so operands don't roll out unless something in the pod template changes.

This PR fixes the issue by:

  • Reading the hypershift.openshift.io/restart-date annotation from the HostedControlPlane CR in ParseHostedControlPlane()
  • Adding a SetRestartDateAnnotation() helper that injects the restart-date into pod template annotations of all rendered Deployments, DaemonSets, and StatefulSets
  • Calling this helper in the reconciler after Render() returns, gated on HyperShift mode and a non-empty restart-date value

This follows the existing patterns in CNO:

  • Reading HCP annotations in ParseHostedControlPlane (like control-plane-priority-class)
  • Modifying rendered objects post-Render (like setOVNObjectAnnotation)

This is the architecturally correct location for this logic since CNO owns these operands and should be responsible for their lifecycle.

Test plan

  • Unit tests for ParseHostedControlPlane with restart-date annotation
  • Unit tests for SetRestartDateAnnotation covering Deployments, DaemonSets, StatefulSets, non-apps objects, annotation preservation, and multi-object handling
  • go build ./... passes
  • go test ./pkg/... ./cmd/... passes
  • go vet passes
  • Manual e2e: Set hypershift.openshift.io/restart-date annotation on an HCP and verify cloud-network-config-controller pods restart

Fixes: https://issues.redhat.com/browse/OCPBUGS-88531

🤖 Generated with Claude Code via /jira:solve OCPBUGS-88531

Summary by CodeRabbit

Release Notes

  • New Features

  • Added restart date annotation support for HyperShift control planes. The system now reads a restart date from control plane metadata and propagates it to provisioned Deployments, DaemonSets, and StatefulSets.

  • Bug Fixes

  • Improved reconciliation behavior by failing fast if restart-date annotation updates cannot be applied, marking the operator as degraded instead of continuing.

  • Tests

  • Added unit tests covering restart date parsing and propagation across supported controller kinds.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@openshift-ci openshift-ci Bot requested review from kyrtapz and marty-power June 15, 2026 16:49
@bryan-cox

Copy link
Copy Markdown
Member Author

/retest-required

@bryan-cox

Copy link
Copy Markdown
Member Author

@openshift-ci-robot openshift-ci-robot added the verified Signifies that the PR passed pre-merge verification criteria label Jun 16, 2026
@openshift-ci-robot

Copy link
Copy Markdown
Contributor

@bryan-cox: This PR has been marked as verified by @bryan-cox.

Details

In response to this:

/verified by @bryan-cox

https://bryan-cox.github.io/architectural-artifact-sharing/test-verification-report-ocpbugs-88531/

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@bryan-cox

Copy link
Copy Markdown
Member Author

/retest


restartDate, _, err := unstructured.NestedString(hcp.UnstructuredContent(), "metadata", "annotations", RestartDateAnnotation)
if err != nil {
return nil, fmt.Errorf("failed to extract restart date annotation: %v", err)

@mgencur mgencur Jun 18, 2026

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: It would be better to use %w to preserve the error chain but since all other calls in this file use %v let's keep it.

@mgencur

mgencur commented Jun 18, 2026

Copy link
Copy Markdown

/lgtm

@openshift-ci openshift-ci Bot added the lgtm Indicates that a PR is ready to be merged. label Jun 18, 2026

@kyrtapz kyrtapz left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When the hypershift.openshift.io/restart-date annotation is set on a HostedControlPlane CR, CNO-managed operands like cloud-network-config-controller were not being restarted. This happened because CNO uses server-side apply with deterministic manifests — applying the same manifest twice is a no-op, so operands don't roll out unless something in the pod template changes.

While the change is mostly I don't get the reasoning from the PR description.
CNO never propagated this annotation to its operand pod templates, so there was nothing to trigger a rollout. This has nothing to do with SSA.

Comment thread pkg/hypershift/hypershift.go Outdated

// SetRestartDateAnnotation sets the restart-date annotation on pod templates of all
// Deployment, DaemonSet, and StatefulSet objects to trigger a rolling restart.
func SetRestartDateAnnotation(objs []*unstructured.Unstructured, restartDate string) error {

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will cause a rollout of ALL CNO managed Deployments, DaemonSets, and StatefulSets, even if they run only in the hosted cluster.
I was sure that this annotation only affects the control-plane components in hypershift, is that not the case?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch — SetRestartDateAnnotation currently operates on all rendered objects from Render(), which includes guest-cluster DaemonSets (ovnkube-node, multus, etc.), not just the HCP-namespace control-plane Deployments. The original CPO restart logic only targeted multus-admission-controller, network-node-identity, and ovnkube-control-plane in the HCP namespace.

I'll scope this by filtering on the HCP namespace so only control-plane objects are annotated.

r.status.UnsetProgressing(statusmanager.OperatorRender)
}

if hcp := bootstrapResult.Infra.HostedControlPlane; hcp != nil && hcp.RestartDate != "" {

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When the annotation is removed there will be another rollout, is this the expected behavior?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, removing the annotation would cause another rollout since the pod template spec changes (annotation removed). This is the expected behavior — removing the annotation is an explicit operator action, and the resulting rollout restores the clean state. I'll document this in the PR description.

@bryan-cox

Copy link
Copy Markdown
Member Author

@kyrtapz re: the PR description — you're right, the SSA framing is misleading. The actual issue is simply that CNO never propagated the restart-date annotation to its operand pod templates, so there was nothing to trigger a rollout. I'll update the description.

…emplates

When the hypershift.openshift.io/restart-date annotation is set on a
HostedControlPlane, CNO now reads it and injects it into the pod
template annotations of all rendered Deployments, DaemonSets, and
StatefulSets. This triggers Kubernetes rolling restarts for all CNO
operands, including cloud-network-config-controller which was
previously missed.

The fix follows the existing pattern of reading HCP annotations in
ParseHostedControlPlane (like priority-class) and modifying rendered
objects post-Render (like setOVNObjectAnnotation). This is the correct
architectural location for this logic since CNO owns these operands.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
@openshift-ci-robot openshift-ci-robot removed the verified Signifies that the PR passed pre-merge verification criteria label Jun 22, 2026
@openshift-ci openshift-ci Bot removed the lgtm Indicates that a PR is ready to be merged. label Jun 22, 2026
@openshift-ci-robot

Copy link
Copy Markdown
Contributor

@bryan-cox: This pull request references Jira Issue OCPBUGS-88531, which is valid.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state POST, which is one of the valid states (NEW, ASSIGNED, POST)
Details

In response to this:

Summary

When the hypershift.openshift.io/restart-date annotation is set on a HostedControlPlane CR, CNO-managed operands like cloud-network-config-controller were not being restarted. This happened because CNO uses server-side apply with deterministic manifests — applying the same manifest twice is a no-op, so operands don't roll out unless something in the pod template changes.

This PR fixes the issue by:

  • Reading the hypershift.openshift.io/restart-date annotation from the HostedControlPlane CR in ParseHostedControlPlane()
  • Adding a SetRestartDateAnnotation() helper that injects the restart-date into pod template annotations of all rendered Deployments, DaemonSets, and StatefulSets
  • Calling this helper in the reconciler after Render() returns, gated on HyperShift mode and a non-empty restart-date value

This follows the existing patterns in CNO:

  • Reading HCP annotations in ParseHostedControlPlane (like control-plane-priority-class)
  • Modifying rendered objects post-Render (like setOVNObjectAnnotation)

This is the architecturally correct location for this logic since CNO owns these operands and should be responsible for their lifecycle.

Test plan

  • Unit tests for ParseHostedControlPlane with restart-date annotation
  • Unit tests for SetRestartDateAnnotation covering Deployments, DaemonSets, StatefulSets, non-apps objects, annotation preservation, and multi-object handling
  • go build ./... passes
  • go test ./pkg/... ./cmd/... passes
  • go vet passes
  • Manual e2e: Set hypershift.openshift.io/restart-date annotation on an HCP and verify cloud-network-config-controller pods restart

Fixes: https://issues.redhat.com/browse/OCPBUGS-88531

🤖 Generated with Claude Code via /jira:solve OCPBUGS-88531

Summary by CodeRabbit

Release Notes

  • New Features

  • Added support for restart-date annotations on HyperShift control planes, including reading the restart date from control plane metadata and propagating it to eligible pod-template workloads (Deployments, DaemonSets, and StatefulSets) within the correct namespace.

  • Bug Fixes

  • Improved reconciliation reliability by stopping and marking the operator as degraded when restart-date annotation updates fail, instead of continuing subsequent steps.

  • Tests

  • Added unit tests for restart-date parsing and annotation propagation across supported workload types.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@bryan-cox

Copy link
Copy Markdown
Member Author

@openshift-ci-robot openshift-ci-robot added the verified Signifies that the PR passed pre-merge verification criteria label Jun 22, 2026
@openshift-ci-robot

Copy link
Copy Markdown
Contributor

@bryan-cox: This PR has been marked as verified by @bryan-cox.

Details

In response to this:

/verified by @bryan-cox

https://bryan-cox.github.io/architectural-artifact-sharing/test-verification-report-ocpbugs-88531/

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@kyrtapz

kyrtapz commented Jun 23, 2026

Copy link
Copy Markdown
Contributor

/lgtm

@openshift-ci openshift-ci Bot added the lgtm Indicates that a PR is ready to be merged. label Jun 23, 2026
@openshift-ci

openshift-ci Bot commented Jun 23, 2026

Copy link
Copy Markdown
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: bryan-cox, kyrtapz, mgencur

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@openshift-ci openshift-ci Bot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Jun 23, 2026
@bryan-cox

Copy link
Copy Markdown
Member Author

/retest-required

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

/retest-required

Remaining retests: 0 against base HEAD c376140 and 2 for PR HEAD ab7d755 in total

@bryan-cox

Copy link
Copy Markdown
Member Author

/retest-required

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

/retest-required

Remaining retests: 0 against base HEAD 5baa578 and 1 for PR HEAD ab7d755 in total

@bryan-cox

Copy link
Copy Markdown
Member Author

/retest-required

@openshift-ci

openshift-ci Bot commented Jun 24, 2026

Copy link
Copy Markdown
Contributor

@bryan-cox: The following tests failed, say /retest to rerun all failed tests or /retest-required to rerun all mandatory failed tests:

Test name Commit Details Required Rerun command
ci/prow/5.0-upgrade-from-stable-4.22-e2e-azure-ovn-upgrade ab7d755 link false /test 5.0-upgrade-from-stable-4.22-e2e-azure-ovn-upgrade
ci/prow/5.0-upgrade-from-stable-4.22-e2e-gcp-ovn-upgrade ab7d755 link false /test 5.0-upgrade-from-stable-4.22-e2e-gcp-ovn-upgrade
ci/prow/5.0-upgrade-from-stable-4.22-e2e-aws-ovn-upgrade ab7d755 link false /test 5.0-upgrade-from-stable-4.22-e2e-aws-ovn-upgrade
ci/prow/e2e-aws-ovn-rhcos10-techpreview ab7d755 link false /test e2e-aws-ovn-rhcos10-techpreview
ci/prow/e2e-ovn-ipsec-step-registry ab7d755 link true /test e2e-ovn-ipsec-step-registry
ci/prow/e2e-aws-ovn-upgrade-ipsec ab7d755 link true /test e2e-aws-ovn-upgrade-ipsec
ci/prow/e2e-metal-ipi-ovn-ipv6-ipsec ab7d755 link true /test e2e-metal-ipi-ovn-ipv6-ipsec
ci/prow/e2e-metal-ipi-ovn-dualstack-bgp-local-gw ab7d755 link true /test e2e-metal-ipi-ovn-dualstack-bgp-local-gw

Full PR test history. Your PR dashboard.

Details

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

approved Indicates a PR has been approved by an approver from all required OWNERS files. jira/severity-moderate Referenced Jira bug's severity is moderate for the branch this PR is targeting. jira/valid-bug Indicates that a referenced Jira bug is valid for the branch this PR is targeting. jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. lgtm Indicates that a PR is ready to be merged. verified Signifies that the PR passed pre-merge verification criteria

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants